python series to list of string

27

# With series of int zipcodes:
zip_strs = us_zips['zipcode'].astype(str).values.tolist()

# Resulting list:
['10601', '60047', '50301', '10606']

Comments

Submit
0 Comments